script_enemy_main
{
        let csd     = GetCurrentScriptDirectory;
	let speed = GetSpeed;
	let angle = GetAngle;
	let num = GetArgument;
	let imgEnemy;

		imgEnemy=csd~"..\lib\fairy_red.png";

	let SelectedDifficult=GetCommonDataDefault("SELECTEDDIFFICULT","Normal");

    @Initialize {
        SetLife(150);
        SetDamageRate(100,100);
	SetTexture(imgEnemy);
	Initialize_Fairy(7);
	Tmain;
	}

    @MainLoop {
	ascent(let i in -1..2)
	{
	SetCollisionA(GetX()+i*20,GetY(),48);
        MSDSetCollisionB(GetX()+i*20,GetY(),8);
	}
	yield;
    }

        @DrawLoop {
		SetColor(ZakoColor[0],ZakoColor[1],ZakoColor[2]);
		DrawFairy(imgEnemy);
	}

        @Finalize
        {
		FinalizeItemSet(3);
		alternative(GetCommonDataDefault("SELECTEDDIFFICULT","None"))
		case("Moderate")
		{
			ReturnBurstShotnum(10);
		}
		case("Extream")
		{
			ReturnBurstShotnum(10);
			ReturnPowerShotnum(5);
		}
		case("Apocalypse")
		{
			ReturnBurstShotnum(10);
		}
        } 

task Tmain
{
yield;
OutDamageRateZero;
AutoErazeTime(900);
GetDamege;
move;

summon;
}

task summon
{
        CreateEnemyFromScript("Familiar", GetX, GetY,
                              0, 0, 1);
        CreateEnemyFromScript("Familiar", GetX, GetY,
                              0, 0, -1);
}

task move
{
	SetMovePosition03(GetCenterX-100*num,GetCenterY-120,10,5);
	wait(120);
	loop(3)
	{
		moveToPlayer03(60, 0, 20,4, GetClipMinX+32, GetClipMinY+32, GetClipMaxX-32, GetClipMaxY-32);
		wait(120);
	}
	SetSpeed(1);
	SetAngle(-90);
}

#include_function ".\..\txt/StageEnemydata.txt"
#include_function ".\..\lib\lib_anime_fairy.txt"
}

script_enemy Familiar {
    let csd     = GetCurrentScriptDirectory;
    let imgFam  = csd ~ "..\img\familiar.png";
	let num = GetArgument;
    @Initialize {
	SetCoordinateType(COODINATE_TYPE_PARENT);
	let num = GetArgument;
        SetLife(1000);
        SetScore(10000);
        SetDamageRateEx(100,100,100,100);
        SetTexture(imgFam);
        setGraphic;
	TMain;
    }

    @MainLoop {
	SetX(15*num);
	SetY(20);
        yield;
    }

    @DrawLoop {
        DrawGraphic(GetX, GetY);
    }

    task TMain {
        yield;
	
alternative(GetCommonDataDefault("SELECTEDDIFFICULT","None"))
case("Moderate")
{
shotM;
}
case("Extream")
{
shotE;
}
case("Apocalypse")
{
shotA;
}

	AutoErazeTime(890);
    }


task shotM
{
wait(30);
loop(10)
{
	let angle=atan2(GetPlayerY-GetY-15,GetPlayerX-GetX+15*num);
	loop(5)
	{
		CreateShot01(GetX,GetY,4.5,angle,150,0);
		wait(3);
	}
wait(30);
}
}
///////////////////////////////////////////////////////////////
task shotE
{
wait(30);
loop(10)
{
	let angle=atan2(GetPlayerY-GetY-15,GetPlayerX-GetX+15*num);
	loop(5)
	{
		ascent(let i in -1..2)
		{
		CreateShot01(GetX,GetY,4.5,angle+3*i,150,0);
		}
		wait(3);
	}
wait(30);
}
}
//////////////////////////////////////////////////////////////
task shotA
{
wait(30);
loop(10)
{
	let angle=atan2(GetPlayerY-GetY-15,GetPlayerX-GetX+15*num);
	loop(5)
	{
		ascent(let i in -3..4)
		{
			CreateShot01(GetX,GetY,4.5,angle+3*i,150,0);
		}
		wait(3);
	}
wait(30);
}
}


    // OtBbN̐ݒ
sub setGraphic{ SetGraphicRect( 0, 48, 48, 96); }
#include_function ".\..\txt/StageEnemydata.txt"
}

#include_script ".\..\txt/EnemyShotData.txt"